home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C25 / all.makefile < prev    next >
Encoding:
Makefile  |  2000-05-25  |  5.3 KB  |  148 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C25
  7. # using the all compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f all.makefile
  11.  
  12. .SUFFIXES : .obj .cpp .c
  13. .cpp.obj :
  14.     $(CPP) $(CPPFLAGS) -c $<
  15. .c.obj :
  16.     $(CPP) $(CPPFLAGS) -c $<
  17.  
  18. all: \
  19.     SingletonPattern.exe \
  20.     UseLog2.exe \
  21.     SingletonPattern2.exe \
  22.     FunctionStaticSingleton.exe \
  23.     ShapeFactory1.exe \
  24.     ShapeFactory2.exe \
  25.     AbstractFactory.exe \
  26.     VirtualConstructor.exe \
  27.     InnerClassIdiom.exe \
  28.     ObservedFlower.exe \
  29.     PaperScissorsRock.exe \
  30.     BeeAndFlowers.exe \
  31.     Recycle1.exe \
  32.     Recycle2.exe \
  33.     Recycle3.exe \
  34.     Recycle4.exe \
  35.     DoubleDispatch.exe \
  36.     TrashVisitor.exe \
  37.     DynaTrash.exe 
  38.  
  39. test: all 
  40.     SingletonPattern.exe  
  41.     UseLog2.exe  
  42.     SingletonPattern2.exe  
  43.     FunctionStaticSingleton.exe  
  44.     ShapeFactory1.exe  
  45.     ShapeFactory2.exe  
  46.     AbstractFactory.exe  
  47.     VirtualConstructor.exe  
  48.     InnerClassIdiom.exe  
  49.     ObservedFlower.exe  
  50.     PaperScissorsRock.exe  
  51.     BeeAndFlowers.exe  
  52.     Recycle1.exe  
  53.     Recycle2.exe  
  54.     Recycle3.exe  
  55.     Recycle4.exe  
  56.     DoubleDispatch.exe  
  57.     TrashVisitor.exe  
  58.     DynaTrash.exe  
  59.  
  60. bugs: 
  61.     @echo No compiler bugs in this directory!
  62.  
  63. SingletonPattern.exe: SingletonPattern.obj 
  64.     $(CPP) $(OFLAG)SingletonPattern.exe SingletonPattern.obj 
  65.  
  66. UseLog2.exe: UseLog2.obj UseLog1.obj 
  67.     $(CPP) $(OFLAG)UseLog2.exe UseLog2.obj UseLog1.obj 
  68.  
  69. SingletonPattern2.exe: SingletonPattern2.obj 
  70.     $(CPP) $(OFLAG)SingletonPattern2.exe SingletonPattern2.obj 
  71.  
  72. FunctionStaticSingleton.exe: FunctionStaticSingleton.obj 
  73.     $(CPP) $(OFLAG)FunctionStaticSingleton.exe FunctionStaticSingleton.obj 
  74.  
  75. ShapeFactory1.exe: ShapeFactory1.obj 
  76.     $(CPP) $(OFLAG)ShapeFactory1.exe ShapeFactory1.obj 
  77.  
  78. ShapeFactory2.exe: ShapeFactory2.obj 
  79.     $(CPP) $(OFLAG)ShapeFactory2.exe ShapeFactory2.obj 
  80.  
  81. AbstractFactory.exe: AbstractFactory.obj 
  82.     $(CPP) $(OFLAG)AbstractFactory.exe AbstractFactory.obj 
  83.  
  84. VirtualConstructor.exe: VirtualConstructor.obj 
  85.     $(CPP) $(OFLAG)VirtualConstructor.exe VirtualConstructor.obj 
  86.  
  87. InnerClassIdiom.exe: InnerClassIdiom.obj 
  88.     $(CPP) $(OFLAG)InnerClassIdiom.exe InnerClassIdiom.obj 
  89.  
  90. ObservedFlower.exe: ObservedFlower.obj 
  91.     $(CPP) $(OFLAG)ObservedFlower.exe ObservedFlower.obj 
  92.  
  93. PaperScissorsRock.exe: PaperScissorsRock.obj 
  94.     $(CPP) $(OFLAG)PaperScissorsRock.exe PaperScissorsRock.obj 
  95.  
  96. BeeAndFlowers.exe: BeeAndFlowers.obj 
  97.     $(CPP) $(OFLAG)BeeAndFlowers.exe BeeAndFlowers.obj 
  98.  
  99. Recycle1.exe: Recycle1.obj 
  100.     $(CPP) $(OFLAG)Recycle1.exe Recycle1.obj 
  101.  
  102. Recycle2.exe: Recycle2.obj 
  103.     $(CPP) $(OFLAG)Recycle2.exe Recycle2.obj 
  104.  
  105. Recycle3.exe: Recycle3.obj TrashPrototypeInit.obj fillBin.obj Trash.obj TrashStatics.obj 
  106.     $(CPP) $(OFLAG)Recycle3.exe Recycle3.obj TrashPrototypeInit.obj fillBin.obj Trash.obj TrashStatics.obj 
  107.  
  108. Recycle4.exe: Recycle4.obj TrashPrototypeInit.obj fillBin.obj Trash.obj TrashStatics.obj 
  109.     $(CPP) $(OFLAG)Recycle4.exe Recycle4.obj TrashPrototypeInit.obj fillBin.obj Trash.obj TrashStatics.obj 
  110.  
  111. DoubleDispatch.exe: DoubleDispatch.obj DDTrashPrototypeInit.obj fillBin.obj Trash.obj TrashStatics.obj 
  112.     $(CPP) $(OFLAG)DoubleDispatch.exe DoubleDispatch.obj DDTrashPrototypeInit.obj fillBin.obj Trash.obj TrashStatics.obj 
  113.  
  114. TrashVisitor.exe: TrashVisitor.obj VisitorTrashPrototypeInit.obj fillBin.obj Trash.obj TrashStatics.obj 
  115.     $(CPP) $(OFLAG)TrashVisitor.exe TrashVisitor.obj VisitorTrashPrototypeInit.obj fillBin.obj Trash.obj TrashStatics.obj 
  116.  
  117. DynaTrash.exe: DynaTrash.obj TrashPrototypeInit.obj fillBin.obj Trash.obj TrashStatics.obj 
  118.     $(CPP) $(OFLAG)DynaTrash.exe DynaTrash.obj TrashPrototypeInit.obj fillBin.obj Trash.obj TrashStatics.obj 
  119.  
  120.  
  121. SingletonPattern.obj: SingletonPattern.cpp 
  122. UseLog1.obj: UseLog1.cpp LogFile.h 
  123. UseLog2.obj: UseLog2.cpp LogFile.h 
  124. SingletonPattern2.obj: SingletonPattern2.cpp 
  125. FunctionStaticSingleton.obj: FunctionStaticSingleton.cpp 
  126. ShapeFactory1.obj: ShapeFactory1.cpp ..\purge.h 
  127. ShapeFactory2.obj: ShapeFactory2.cpp ..\purge.h 
  128. AbstractFactory.obj: AbstractFactory.cpp 
  129. VirtualConstructor.obj: VirtualConstructor.cpp 
  130. InnerClassIdiom.obj: InnerClassIdiom.cpp 
  131. ObservedFlower.obj: ObservedFlower.cpp Observable.h 
  132. PaperScissorsRock.obj: PaperScissorsRock.cpp ..\purge.h 
  133. BeeAndFlowers.obj: BeeAndFlowers.cpp ..\purge.h 
  134. Recycle1.obj: Recycle1.cpp sumValue.h ..\purge.h 
  135. Recycle2.obj: Recycle2.cpp sumValue.h ..\purge.h 
  136. Trash.obj: Trash.cpp Trash.h 
  137. TrashStatics.obj: TrashStatics.cpp Trash.h Aluminum.h Paper.h Glass.h Cardboard.h 
  138. TrashPrototypeInit.obj: TrashPrototypeInit.cpp Trash.h Aluminum.h Paper.h Glass.h Cardboard.h 
  139. fillBin.obj: fillBin.cpp fillBin.h Fillable.h ..\C17\trim.h ..\require.h 
  140. Recycle3.obj: Recycle3.cpp Trash.h Aluminum.h Paper.h Glass.h fillBin.h sumValue.h ..\purge.h 
  141. Recycle4.obj: Recycle4.cpp Trash.h Aluminum.h Paper.h Glass.h Cardboard.h fillBin.h sumValue.h ..\purge.h 
  142. DDTrashPrototypeInit.obj: DDTrashPrototypeInit.cpp TypedBin.h Aluminum.h Paper.h Glass.h Cardboard.h 
  143. DoubleDispatch.obj: DoubleDispatch.cpp TypedBin.h fillBin.h sumValue.h ..\purge.h 
  144. VisitorTrashPrototypeInit.obj: VisitorTrashPrototypeInit.cpp Visitor.h 
  145. TrashVisitor.obj: TrashVisitor.cpp Visitor.h fillBin.h ..\purge.h 
  146. DynaTrash.obj: DynaTrash.cpp Trash.h fillBin.h sumValue.h ..\purge.h 
  147.  
  148.